home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / cxsplitt.zip / PROJECT1.DPR < prev    next >
Text File  |  1996-07-10  |  263b  |  16 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {Form1},
  6.   Unit2 in 'Unit2.pas' {Form2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm2, Form2);
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.